home *** CD-ROM | disk | FTP | other *** search
/ Merciful 1 / Merciful - Disc 1.iso / software / r / rexx_plus_compiler / rexxpluscompiler2.dms / in.adf / RexxPlPlot / RexxPlPlot.zoo / Makefile < prev    next >
Encoding:
Makefile  |  1990-03-17  |  673 b   |  33 lines

  1. #
  2. #   This is the top-level makefile.
  3. #   Targets are:
  4. #
  5. #      make lattice
  6. #         sets things up to compile under lattice
  7. #      make manx
  8. #         sets things up to compile under manx
  9. #      make
  10. #         actually compiles everything
  11. #      make clean
  12. #         cleans things up
  13.  
  14. default: all
  15.  
  16. lattice:
  17.     copy src/Makefile.Lattice src/Makefile
  18.     copy minrexx/Makefile.Lattice minrexx/Makefile
  19.     copy rexxsrc/Makefile.Lattice rexxsrc/Makefile
  20.     execute make-clean
  21.  
  22. manx:
  23.     copy src/Makefile.Manx src/Makefile
  24.     copy minrexx/Makefile.Manx minrexx/Makefile
  25.     copy rexxsrc/Makefile.Manx rexxsrc/Makefile
  26.     execute make-clean
  27.  
  28. all:
  29.     execute make-all
  30.  
  31. clean:
  32.     execute make-clean
  33.